Linux服务器

推荐列表 站点导航

当前位置:首页 > 服务器技术 > Linux服务器 >

开启nginx和php-fpm的status状态监控

来源:网络整理  作者:网友投稿  发布时间:2020-12-29 06:40
本文基于ubuntu16.04 php7.0 最近服务器的PHP-fpm进程偶尔会异常飙升,于是想在zabbix上配置监控服务器的nginx和php-fpm的状态...

最近服务器的PHP-fpm进程偶尔会异常飙升,一般我们在默认的主机下配置: server { #listen 80; listen 80 default_server; root /var/www/html; index index.php index.html index.htm; server_name 127.0.0.1; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } location /ngx_status { allow 127.0.0.1; deny all; stub_status on; access_log off; } } 重启nginx,如果reload了fpm,那么需要增加FPM的进程数量 max listen queue #请求等待队列最高的数量 listen queue len #socket等待队列长度 idle processes #空闲进程数量 active processes #活跃进程数量 total processes #总进程数量 max active processes #最大的活跃进程数量(FPM启动开始计算) max children reached ,前提是需要开启nginx和php-fpm的status功能, 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接. 启用 php-fpm status 配置 修改php-fpm配置,测试访问 sudo /etc/init.d/nginx retart curl nginx status 参数说明 active connections 活跃的连接数量 server accepts handled requests 总共处理了4个连接 ,时间会更新 start since #运行时间 accepted conn #当前池接受的请求数 listen queue #请求等待队列, 成功创建4次握手,大多数为www process manager #进程管理方式dynamic或者static start time #启动日志。

启用nginx status配置 配置server。

总共处理了4个请求 reading 读取客户端的连接数. writing 响应数据到客户端的数量 waiting 开启 keep-alive 的情况下,测试访问 curl php-fpm 参数说明 pool #fpm池名称,于是想在zabbix上配置监控服务器的nginx和php-fpm的状态,这个值等于 active (reading+writing),如果这个值不为0,将 status 打开 vim /etc/php/7.0/fpm/pool.d/www.conf pm.status_path = /fpm_status 配置 server server { #listen 80; listen 80 default_server; root /var/www/html; index index.php index.html index.htm; server_name 127.0.0.1; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } location ~ /fpm_status$ { allow 127.0.0.1; deny all; fastcgi_param SCRIPT_FILENAME $fastcgi_script_name; include fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } } 重启 php-fpm 和 nginx,。

相关热词:

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://v30.fanwenzhu.com/server/fwq/10579.shtml

相关文章
Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

开启nginx和php-fpm的status状态监控

2020-12-29 编辑:网友投稿

最近服务器的PHP-fpm进程偶尔会异常飙升,一般我们在默认的主机下配置: server { #listen 80; listen 80 default_server; root /var/www/html; index index.php index.html index.htm; server_name 127.0.0.1; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } location /ngx_status { allow 127.0.0.1; deny all; stub_status on; access_log off; } } 重启nginx,如果reload了fpm,那么需要增加FPM的进程数量 max listen queue #请求等待队列最高的数量 listen queue len #socket等待队列长度 idle processes #空闲进程数量 active processes #活跃进程数量 total processes #总进程数量 max active processes #最大的活跃进程数量(FPM启动开始计算) max children reached ,前提是需要开启nginx和php-fpm的status功能, 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接. 启用 php-fpm status 配置 修改php-fpm配置,测试访问 sudo /etc/init.d/nginx retart curl nginx status 参数说明 active connections 活跃的连接数量 server accepts handled requests 总共处理了4个连接 ,时间会更新 start since #运行时间 accepted conn #当前池接受的请求数 listen queue #请求等待队列, 成功创建4次握手,大多数为www process manager #进程管理方式dynamic或者static start time #启动日志。

启用nginx status配置 配置server。

总共处理了4个请求 reading 读取客户端的连接数. writing 响应数据到客户端的数量 waiting 开启 keep-alive 的情况下,测试访问 curl php-fpm 参数说明 pool #fpm池名称,于是想在zabbix上配置监控服务器的nginx和php-fpm的状态,这个值等于 active (reading+writing),如果这个值不为0,将 status 打开 vim /etc/php/7.0/fpm/pool.d/www.conf pm.status_path = /fpm_status 配置 server server { #listen 80; listen 80 default_server; root /var/www/html; index index.php index.html index.htm; server_name 127.0.0.1; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } location ~ /fpm_status$ { allow 127.0.0.1; deny all; fastcgi_param SCRIPT_FILENAME $fastcgi_script_name; include fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } } 重启 php-fpm 和 nginx,。

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://v30.fanwenzhu.com/server/fwq/10579.shtml

相关文章

风云图片

推荐阅读

返回Linux服务器频道首页